home *** CD-ROM | disk | FTP | other *** search
/ Amiga Games Extra 1996 September / Amiga Games Extra CD-ROM 9-1996.iso / spiele / publicdomain / elan / src / texts.c < prev    next >
C/C++ Source or Header  |  1996-06-07  |  3KB  |  153 lines

  1.  
  2. #include "global.h"
  3. #include "coredefs.h"
  4. #include "texts.h"
  5.  
  6. const char *season_name[SEASONS_NUMBER] =
  7.     {
  8.     "Spring",
  9.     "Summer",
  10.     "Autumn",
  11.     "Winter"
  12.     };
  13.  
  14. const char *quality[QUALITIES_NUMBER] =
  15.     {
  16.     "Terrible",
  17.     "Very Bad",
  18.     "Bad",
  19.     "Poor",
  20.     "Fair",
  21.     "Good",
  22.     "Very Good",
  23.     "Excellent"
  24.     };
  25.  
  26. const char *device_name[DEVICE_CLASS_NUMBER] =
  27.     {
  28.     "Solar cell",
  29.     "Nuclear reactor",
  30.     "Battery",
  31.     "Heating system",
  32.     "Water processor",
  33.     "Water tank",
  34.     "Air processor",
  35.     "Air tank",
  36.     "Greenhouse",
  37.     "Food storage",
  38.     "Plantation",
  39.     "Biomass silo",
  40.     "Yeaster",
  41.     "Distillery",
  42.     "Elan tank",
  43.     "Computer",
  44.     "Habitat",
  45.     "Hybridome",
  46.     "Metamorpher",
  47.     "Radiator"
  48.     };
  49.  
  50. const char *resource_name[RESOURCE_TYPE_NUMBER] =
  51.     {
  52.     "Electricity",
  53.     "Heat",
  54.     "Water",
  55.     "Air",
  56.     "Food",
  57.     "Biomass",
  58.     "Elan",
  59.     "",             /* PRIMARY_RT_NUMBER */
  60.     "CPU power",
  61.     "Life support",
  62.     "Life support",
  63.     "Morphing power"
  64.     };
  65.  
  66. const char *measure_unit[RESOURCE_TYPE_NUMBER] =
  67.     {
  68.     "Kwh",
  69.     "Kcal",
  70.     "l",
  71.     "l",
  72.     "Kg",
  73.     "Kg",
  74.     "ml",
  75.     "",             /* PRIMARY_RT_NUMBER */
  76.     "Horner",
  77.     "units",
  78.     "units",
  79.     "units"
  80.     };
  81.  
  82. const char *mobile_name[MOBILE_CLASS_NUMBER] =
  83.     {
  84.     "Roboprobe",
  85.     "Raider",
  86.     "Exterminator",
  87.     "Stalker",
  88.     "Guardian",
  89.     "",                 /* PRIMARY_MC_NUMBER */
  90.     "Pantropic form",
  91.     "Mutant form",
  92.     "Alien parasite",
  93.     "Alien breeder",
  94.     "Plasma gizmo",
  95.     "Alien mole",
  96.     "Space shuttle"
  97.     };
  98.  
  99. const char *program_tag_name[PRIMARY_PT_NUMBER] =
  100.     {
  101.     "Survey",
  102.     "Explore",
  103.     "Hunt",
  104.     "Patrol"
  105.     };
  106.  
  107. const char *message_text[MESSAGE_CLASS_NUMBER] =
  108.     {
  109.     "",
  110.     TITLE,
  111.     "Shuttle arrival",
  112.     "Shuttle departure",
  113.     "Plant failure",
  114.     "Plant under attack",
  115.     "Duct under attack",
  116.     "Plant repaired",
  117.     "Duct repaired",
  118.     "Habitat life support critical",
  119.     "Hybridome life support critical",
  120.     "Human cloned",
  121.     "Hybrid metamorphed",
  122.     "Pantropic form generated",
  123.     "Mutant form generated",
  124.     "Robot destroyed",
  125.     "Pantropic form terminated",
  126.     "Mutant form terminated",
  127.     "Alien form terminated",
  128.     "End of colony",
  129.     "Select item to buy",
  130.     "Not enough money to buy item",
  131.     "Select item to install",
  132.     "Item not available",
  133.     "Square not empty",
  134.     "Robot must be placed in monitored area",
  135.     "Plant cannot be installed near other plants",
  136.     "Too many plants",
  137.     "Too many ducts",
  138.     "Too many lifeforms",
  139.     "Resource not exportable",
  140.     "Not enough money to build duct",
  141.     "Duct can't cross the obstacle",
  142.     "Game loaded",
  143.     "Game loaded -- version mismatch",
  144.     "Load error",
  145.     "Game saved",
  146.     "Save error",
  147.     "Place habitat [0], rescan [Space], load [L], save [S] or exit [ESC]",
  148.     "Press [Space] or [Tab] to leave trade mode",
  149.     "Press [?] for help",
  150.     "Current score is final. Press any key to exit."
  151.     };
  152.  
  153.